home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-01
/
lvswin31.zip
/
DEMO3.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1992-02-17
|
690b
|
43 lines
/*
* LVS Windows
* The Window Class System
*
* Copyright 1992 (c), Lake View Software
* 4321 Harborough Rd.
* Columbus, OH 43220
* All rights reserved.
*
* DEMO3.CPP
*/
#include "LVSwin.HPP"
void main ()
{
/*
* Turn on mouse support
*/
Win_mouse_mode (M_FULL);
/*
* A file list object
*/
Win_File_List fp;
/*
* Read from the user
*/
char *str = fp.read ("*.*");
/*
* Display the results
*/
if (str)
Win_Msg (str);
else
Win_Error ("No file selected!");
}